home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / swtools / libdwarf / dwarf_arange.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-02  |  704 b   |  36 lines

  1. /*
  2.     dwarf_arange.h
  3.  
  4.     $Revision: 1.4 $    $Date: 1994/06/06 20:12:12 $
  5. */
  6.  
  7. /* This structure is used to read an arange into. */
  8. struct Dwarf_Arange_s {
  9.  
  10.     /* Starting address of the arange, ie low-pc. */
  11.     Dwarf_Addr        ar_address;
  12.  
  13.     /* Length of the arange. */
  14.     Dwarf_Unsigned    ar_length;
  15.  
  16.     /* 
  17.         Offset into .debug_info of the start of the 
  18.         compilation-unit containing this set of aranges.
  19.     */
  20.     Dwarf_Off        ar_info_offset;
  21.  
  22.     /* Corresponding Dwarf_Debug. */
  23.     Dwarf_Debug        ar_dbg;
  24. };
  25.  
  26.  
  27.  
  28. int
  29. _dwarf_get_aranges_addr_offsets(
  30.     Dwarf_Debug         dbg,
  31.     Dwarf_Addr          **addrs,
  32.     Dwarf_Off           **offsets,
  33.     Dwarf_Signed        *count,
  34.     Dwarf_Error         *error
  35. );
  36.